home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / dos33pat.arc / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-10-09  |  875 b   |  33 lines

  1. @echo off
  2. cls
  3. if %1 == b: goto b
  4. if %1 == B: goto b
  5. if %1 == c: goto c
  6. if %1 == C: goto c
  7. goto prob
  8. :b
  9. echo Place the master backup of your DOS 3.00 diskette into drive B:
  10. echo                     ----------------
  11. pause
  12. :c
  13. cls
  14. echo The new BACKUP.COM file will be replaced in all directories on
  15. echo the target disk %1.  I17.COM will be copied to the root directory
  16. echo of the target disk %1.
  17. echo                     ----------------
  18. pause
  19. replace a:\backup.com %1\ /s
  20. copy a:\i17.com %1\
  21. cls
  22. echo The new BACKUP.COM and I17.COM files have been installed
  23. echo on the target disk %1.
  24. echo                     ----------------
  25. goto end
  26. :prob
  27. cls
  28. echo You have not specified a valid drive letter.  The only valid drives are B:
  29. echo and C:.  You must include the colon.  Please try again.
  30. echo                     ----------------
  31. :end
  32. echo on
  33.